home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / mouses.arc / M_JAV.MSC < prev    next >
Encoding:
Text File  |  1986-08-28  |  1.8 KB  |  83 lines

  1. ;
  2. ;    Javelin Pop-up Menu Configuration
  3. ;
  4. Comment        ("Configured for Javelin 1.0")
  5.  
  6. ;
  7. ;    Parameters
  8. ;
  9. Sensitivity    (13, 13)    ; (Xinc, Yinc)
  10. Hysteresis    (1, 1)        ; (AutoX, AutoY)
  11. ReverseVideo    (Yes)        ; Menu is displayed in reverse video
  12. FixedMenu    (Yes)        ; Menu is in a fixed position
  13. MenuCenter    (0, 3)        ; (Col, Row) of menu center
  14. EnableBeep    (Yes)        ; Beeps if wrong button pressed with menu up
  15. NoviceMode    (Yes)        ; Does not generate "Exit Pop-up" menu item
  16. ExpertMode    (No)        ;   "   "      "      "      "     "    "
  17.  
  18.  
  19. ;
  20. ;    Cursor Definitions
  21. ;
  22. ArrowKeys: Cursor
  23. (
  24.     Left    ([Left])
  25.     Right    ([Right])
  26.     Up    ([Up])
  27.     Down    ([Down])
  28. )
  29.  
  30. ;
  31. ;    Button Definitions
  32. ;
  33. LB:    Button    (Menu(Main))        ; Left button
  34. MB:    Button    (Keys([Enter]))     ; Middle button
  35. RB:    Button    (Keys([Esc]))        ; Right button 
  36.  
  37. ;
  38. ;    Menu Definitions
  39. ;
  40. Main: Menu
  41. (
  42.     Title    ("Main Menu")
  43.     Item    ("Javelin Menu",    Keys("/"))
  44.     Item    ("Spell Key",        Keys([Tab]))
  45.     Item    ("Home",        Keys([Home]))
  46.     Item    ("End",            Keys([End]))
  47.     Item    ("Function Keys",    Menu(Function))
  48. )
  49. ;
  50. ;
  51. ;
  52. ;
  53. Function: Menu
  54. (
  55.     Title    ("Function Key Menu")
  56.     Item    ("Javelin Menu",    Keys("/"))
  57.     Item    ("Help",                Keys([F1]))
  58.     Item    ("Edit",        Keys([F2]))
  59.     Item    ("Sync",        Keys([F3]))
  60.     Item    ("Point",          Keys([F4]))
  61.     Item    ("Go To",        Keys([F5]))
  62.     Item    ("Window",              Keys([F6])) 
  63.     Item     ("Run Macro",        Keys([F7]))
  64.     Item    ("Quick Graph",         Keys([F8]))
  65.     Item    ("Calc",        Keys([F9]))
  66.         Item    ("Graph",        Keys([F10]))           
  67.     Item     ("Spell Key",        Keys([TAB]))
  68.     Item    ("Home",        Keys([Home]))
  69.     Item    ("End",            Keys([End]))
  70. )
  71.  
  72.  
  73. ;
  74. ;    Mouse Definition
  75. ;
  76. Mouse
  77. (
  78.     Left    (LB)
  79.     Middle    (MB)
  80.     Right    (RB)
  81.     Cursor    (ArrowKeys)
  82. )
  83.